home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
GameboyDev
/
GBDK
/
lib
/
labs.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-03-29
|
99b
|
10 lines
#include <stdlib.h>
WORD labs(WORD num)
{
if(num < 0)
return -num;
else
return num;
}